From: Ian Jackson Date: Fri, 12 Oct 2018 17:56:04 +0000 (+0000) Subject: tools/firmware/Makefile: CONFIG_PV_SHIM: enable only on x86_64 X-Git-Tag: archive/raspbian/4.14.0+88-g1d1d1f5391-2+rpi1^2~71 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=7801cee48a1c64c4fd6ae2582e24e72781cbae9c;p=xen.git tools/firmware/Makefile: CONFIG_PV_SHIM: enable only on x86_64 Previously this was *dis*abled for x86_*32*. But if someone should run some of this Makefile on ARM, say, it ought not to be built either. Signed-off-by: Ian Jackson --- diff --git a/tools/firmware/Makefile b/tools/firmware/Makefile index 69f63b1fe6..6f9034ff54 100644 --- a/tools/firmware/Makefile +++ b/tools/firmware/Makefile @@ -1,7 +1,7 @@ XEN_ROOT = $(CURDIR)/../.. include $(XEN_ROOT)/tools/Rules.mk -ifneq ($(XEN_TARGET_ARCH),x86_32) +ifeq ($(XEN_TARGET_ARCH),x86_64) CONFIG_PV_SHIM ?= y endif